from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

88453

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-09-17
aiostream - 0.8.1
Ebuild name:

dev-python/aiostream-0.8.1

Description

Generator-based operators for asynchronous iteration

Added to portage

2026-09-17

awscli - 2.36.47
Ebuild name:

app-admin/awscli-2.36.47

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-17

boto3 - 1.43.96
Ebuild name:

dev-python/boto3-1.43.96

Description

The AWS SDK for Python

Added to portage

2026-09-17

botocore - 1.43.96
Ebuild name:

dev-python/botocore-1.43.96

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-17

braintree - 4.47.0
Ebuild name:

dev-python/braintree-4.47.0

Description

Braintree Python Library

Added to portage

2026-09-17

cachetools - 7.2.0
Ebuild name:

dev-python/cachetools-7.2.0

Description

Extensible memoizing collections and decorators

Added to portage

2026-09-17

ccid - 1.8.3
Ebuild name:

app-crypt/ccid-1.8.3

Description

CCID free software driver

Added to portage

2026-09-17

clang - 24.0.0_pre20260916
Ebuild name:

dev-python/clang-24.0.0_pre20260916

Description

Python bindings for llvm-core/clang

Added to portage

2026-09-17

clang - 24.0.0_pre20260916
Ebuild name:

llvm-core/clang-24.0.0_pre20260916

Description

C language family frontend for LLVM

Added to portage

2026-09-17

clang-common - 24.0.0_pre20260916
Ebuild name:

llvm-core/clang-common-24.0.0_pre20260916

Description

Common files shared between multiple slots of clang

Added to portage

2026-09-17

compiler-rt - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/compiler-rt-24.0.0_pre20260916

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-09-17

compiler-rt-sanitizers - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-24.0.0_pre20260916

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-09-17

element-desktop-bin - 1.12.28
Ebuild name:

net-im/element-desktop-bin-1.12.28

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-09-17

emoji - 2.16.0
Ebuild name:

dev-python/emoji-2.16.0

Description

Emoji for Python

Added to portage

2026-09-17

eselect-ctags - 1.20
Ebuild name:

app-eselect/eselect-ctags-1.20

Description

Manages ctags implementations

Added to portage

2026-09-17

eselect-emacs - 1.20
Ebuild name:

app-eselect/eselect-emacs-1.20

Description

Manage multiple Emacs versions on one system

Added to portage

2026-09-17

fish - 4.9.3
Ebuild name:

app-shells/fish-4.9.3

Description

Friendly Interactive SHell

Added to portage

2026-09-17

flang - 24.0.0_pre20260916
Ebuild name:

llvm-core/flang-24.0.0_pre20260916

Description

LLVM's Fortran frontend

Added to portage

2026-09-17

flang-rt - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/flang-rt-24.0.0_pre20260916

Description

LLVM's Fortran runtime

Added to portage

2026-09-17

flit - 4.1.0
Ebuild name:

dev-python/flit-4.1.0

Description

Simplified packaging of Python modules

Added to portage

2026-09-17

flit-core - 4.1.0
Ebuild name:

dev-python/flit-core-4.1.0

Description

Simplified packaging of Python modules (core module)

Added to portage

2026-09-17

gammu - 1.45.0
Ebuild name:

app-mobilephone/gammu-1.45.0

Description

A tool to handle your cellular phone

Added to portage

2026-09-17

hishel - 1.4.0
Ebuild name:

dev-python/hishel-1.4.0

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2026-09-17

initsplit - 1.8_pre20160919
Ebuild name:

app-emacs/initsplit-1.8_pre20160919

Description

Split customizations into different files

Added to portage

2026-09-17

krita - 6.0.4
Ebuild name:

media-gfx/krita-6.0.4

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-09-17

libclc - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libclc-24.0.0_pre20260916

Description

OpenCL C library

Added to portage

2026-09-17

libcxx - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libcxx-24.0.0_pre20260916

Description

New implementation of the C++ standard library, targeting C

Added to portage

2026-09-17

libcxxabi - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libcxxabi-24.0.0_pre20260916

Description

Low level support for a standard C++ library

Added to portage

2026-09-17

libgcc - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libgcc-24.0.0_pre20260916

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-09-17

libunwind - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libunwind-24.0.0_pre20260916

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-17

lit - 24.0.0_pre20260916
Ebuild name:

dev-python/lit-24.0.0_pre20260916

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-09-17

lld - 24.0.0_pre20260916
Ebuild name:

llvm-core/lld-24.0.0_pre20260916

Description

The LLVM linker (link editor)

Added to portage

2026-09-17

lldb - 24.0.0_pre20260916
Ebuild name:

llvm-core/lldb-24.0.0_pre20260916

Description

The LLVM debugger

Added to portage

2026-09-17

llvm - 24.0.0_pre20260916
Ebuild name:

dev-ml/llvm-24.0.0_pre20260916

Description

OCaml bindings for LLVM

Added to portage

2026-09-17

llvm - 24.0.0_pre20260916
Ebuild name:

llvm-core/llvm-24.0.0_pre20260916

Description

Low Level Virtual Machine

Added to portage

2026-09-17

llvm-common - 24.0.0_pre20260916
Ebuild name:

llvm-core/llvm-common-24.0.0_pre20260916

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-09-17

mlir - 24.0.0_pre20260916
Ebuild name:

llvm-core/mlir-24.0.0_pre20260916

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-09-17

openmp - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-24.0.0_pre20260916

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-09-17

openmp-amdgcn-amd-amdhsa - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-24.0.0_pre20260916

Description

OpenMP target library for amdgcn devices

Added to portage

2026-09-17

openmp-nvptx64-nvidia-cuda - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-24.0.0_pre20260916

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-09-17

openmp-spirv64-intel - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-24.0.0_pre20260916

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-09-17

pcsc-lite - 2.5.1
Ebuild name:

sys-apps/pcsc-lite-2.5.1

Description

PC/SC Architecture smartcard middleware library

Added to portage

2026-09-17

platformdirs - 4.11.9
Ebuild name:

dev-python/platformdirs-4.11.9

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-09-17

polly - 24.0.0_pre20260916
Ebuild name:

llvm-core/polly-24.0.0_pre20260916

Description

Polyhedral optimizations for LLVM

Added to portage

2026-09-17

pycurl - 7.48.0
Ebuild name:

dev-python/pycurl-7.48.0

Description

Python bindings for curl/libcurl

Added to portage

2026-09-17

pygraphviz - 2.0.2
Ebuild name:

dev-python/pygraphviz-2.0.2

Description

Python wrapper for the Graphviz Agraph data structure

Added to portage

2026-09-17

pypdf - 6.19.0
Ebuild name:

dev-python/pypdf-6.19.0

Description

Python library to work with PDF files

Added to portage

2026-09-17

pyproject-hooks - 1.3.3
Ebuild name:

dev-python/pyproject-hooks-1.3.3

Description

Wrappers to build Python packages using PEP 517 hooks

Added to portage

2026-09-17

python-gammu - 3.5.0
Ebuild name:

dev-python/python-gammu-3.5.0

Description

Python bindings for Gammu

Added to portage

2026-09-17

simgear - 2024.1.7
Ebuild name:

dev-games/simgear-2024.1.7

Description

Development library for simulation games

Added to portage

2026-09-17

2026-09-16
ExtUtils-XSpp - 0.190.0
Ebuild name:

dev-perl/ExtUtils-XSpp-0.190.0

Description

XS for C++

Added to portage

2026-09-16

Wx - 0.993.200-r5
Ebuild name:

dev-perl/Wx-0.993.200-r5

Description

Perl bindings for wxGTK

Added to portage

2026-09-16

Wx-GLCanvas - 0.90.0-r2
Ebuild name:

dev-perl/Wx-GLCanvas-0.90.0-r2

Description

interface to wxWidgets' OpenGL canvas

Added to portage

2026-09-16

ansible-lint - 26.8.0
Ebuild name:

app-admin/ansible-lint-26.8.0

Description

Checks ansible playbooks for practices and behaviour that can be impr

Added to portage

2026-09-16

atop - 2.13.0
Ebuild name:

sys-process/atop-2.13.0

Description

Resource-specific view of processes

Added to portage

2026-09-16

aws-c-s3 - 1.1.2
Ebuild name:

dev-libs/aws-c-s3-1.1.2

Description

AWS C S3 async library

Added to portage

2026-09-16

awscli - 2.36.46
Ebuild name:

app-admin/awscli-2.36.46

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-16

awscrt - 0.36.4
Ebuild name:

dev-python/awscrt-0.36.4

Description

A common runtime for AWS Python projects

Added to portage

2026-09-16

bash - 5.3_p20
Ebuild name:

app-shells/bash-5.3_p20

Description

The standard GNU Bourne again shell

Added to portage

2026-09-16

bind - 9.20.29
Ebuild name:

net-dns/bind-9.20.29

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-09-16

boto3 - 1.43.95
Ebuild name:

dev-python/boto3-1.43.95

Description

The AWS SDK for Python

Added to portage

2026-09-16

botocore - 1.43.95
Ebuild name:

dev-python/botocore-1.43.95

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-16

cantera - 3.2.0-r1
Ebuild name:

sci-libs/cantera-3.2.0-r1

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2026-09-16

cantera - 3.2.0-r2
Ebuild name:

sci-libs/cantera-3.2.0-r2

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2026-09-16

cpp-httplib - 0.56.0
Ebuild name:

dev-cpp/cpp-httplib-0.56.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-09-16

dnsdist - 2.1.2
Ebuild name:

net-dns/dnsdist-2.1.2

Description

A highly DNS-, DoS- and abuse-aware loadbalancer

Added to portage

2026-09-16

docker-buildx - 0.37.1
Ebuild name:

app-containers/docker-buildx-0.37.1

Description

Docker CLI plugin for extended build capabilities with BuildKit

Added to portage

2026-09-16

doggo - 1.4.0
Ebuild name:

net-dns/doggo-1.4.0

Description

Command-line DNS Client for Humans

Added to portage

2026-09-16

dxvk - 3.1.1
Ebuild name:

app-emulation/dxvk-3.1.1

Description

Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine

Added to portage

2026-09-16

easymock - 5.7.0
Ebuild name:

dev-java/easymock-5.7.0

Description

Mock Objects for interfaces in JUnit tests by generating them on the fly

Added to portage

2026-09-16

esp-pylib - 1.1.4
Ebuild name:

dev-python/esp-pylib-1.1.4

Description

library for logging, utils and constants for Espressif Systems' Python p

Added to portage

2026-09-16

esptool - 5.4.0
Ebuild name:

dev-embedded/esptool-5.4.0

Description

Serial utility for flashing and interacting with Espressif ESP8266 and E

Added to portage

2026-09-16

exim - 4.100-r1
Ebuild name:

mail-mta/exim-4.100-r1

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-09-16

filelock - 3.32.7
Ebuild name:

dev-python/filelock-3.32.7

Description

A platform independent file lock for Python

Added to portage

2026-09-16

firecracker-bin - 1.17.0
Ebuild name:

app-emulation/firecracker-bin-1.17.0

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-09-16

flask-compress - 1.25
Ebuild name:

dev-python/flask-compress-1.25

Description

Compress responses in your Flask app with gzip

Added to portage

2026-09-16

gdal - 3.13.3
Ebuild name:

sci-libs/gdal-3.13.3

Description

Translator library for raster geospatial data formats (includes OGR support)

Added to portage

2026-09-16

gegl - 0.4.72
Ebuild name:

media-libs/gegl-0.4.72

Description

A graph based image processing framework

Added to portage

2026-09-16

gimp - 3.2.6
Ebuild name:

media-gfx/gimp-3.2.6

Description

GNU Image Manipulation Program

Added to portage

2026-09-16

glaze - 8.1.0
Ebuild name:

dev-cpp/glaze-8.1.0

Description

Extremely fast, in memory, JSON and interface library for modern C++

Added to portage

2026-09-16

glycin-loaders - 2.2.1
Ebuild name:

media-libs/glycin-loaders-2.2.1

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2026-09-16

gpep517 - 23
Ebuild name:

dev-python/gpep517-23

Description

A backend script to aid installing Python packages in Gentoo

Added to portage

2026-09-16

iniparser - 4.3.0
Ebuild name:

dev-libs/iniparser-4.3.0

Description

Free stand-alone ini file parsing library

Added to portage

2026-09-16

intellij-idea - 2026.2.3
Ebuild name:

dev-util/intellij-idea-2026.2.3

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-09-16

ivy - 0.15.1
Ebuild name:

app-emacs/ivy-0.15.1

Description

Generic completion mechanism for Emacs

Added to portage

2026-09-16

ivy-rich - 0.1.7
Ebuild name:

app-emacs/ivy-rich-0.1.7

Description

More friendly interface for ivy

Added to portage

2026-09-16

jam-mode - 0.3-r1
Ebuild name:

app-emacs/jam-mode-0.3-r1

Description

An Emacs major mode for editing Jam files

Added to portage

2026-09-16

jasmin - 1.2-r2
Ebuild name:

app-emacs/jasmin-1.2-r2

Description

An Emacs major mode for editing Jasmin Java bytecode assembler files

Added to portage

2026-09-16

jinx - 2.10
Ebuild name:

app-emacs/jinx-2.10

Description

Enchanted Spell Checker for GNU Emacs

Added to portage

2026-09-16

jinx - 2.8
Ebuild name:

app-emacs/jinx-2.8

Description

Enchanted Spell Checker for GNU Emacs

Added to portage

2026-09-16

joplin-mode - 202401009.2024
Ebuild name:

app-emacs/joplin-mode-202401009.2024

Description

GNU Emacs client for accessing Joplin notes

Added to portage

2026-09-16

jq-mode - 0.5.0_p20220610
Ebuild name:

app-emacs/jq-mode-0.5.0_p20220610

Description

Emacs major mode for editing jq queries

Added to portage

2026-09-16

js-comint - 1.2.0
Ebuild name:

app-emacs/js-comint-1.2.0

Description

Run a JavaScript interpreter in an Emacs inferior process window

Added to portage

2026-09-16

js2-mode - 20230408
Ebuild name:

app-emacs/js2-mode-20230408

Description

Improved JavaScript editing mode for GNU Emacs

Added to portage

2026-09-16

jupyter-server - 2.21.1
Ebuild name:

dev-python/jupyter-server-2.21.1

Description

Core services, APIs, and REST endpoints to Jupyter web application

Added to portage

2026-09-16

jupyterlab-server - 2.28.1
Ebuild name:

dev-python/jupyterlab-server-2.28.1

Description

Server components for JupyterLab and JupyterLab like applicatio

Added to portage

2026-09-16

jwcrypto - 1.6.1
Ebuild name:

dev-python/jwcrypto-1.6.1

Description

Implements JWK,JWS,JWE specifications using python-cryptography

Added to portage

2026-09-16

knot - 3.6.0
Ebuild name:

net-dns/knot-3.6.0

Description

High-performance authoritative-only DNS server

Added to portage

2026-09-16

libaom - 3.14.1
Ebuild name:

media-libs/libaom-3.14.1

Description

Alliance for Open Media AV1 Codec SDK

Added to portage

2026-09-16

libmediainfo - 26.05
Ebuild name:

media-libs/libmediainfo-26.05

Description

MediaInfo libraries

Added to portage

2026-09-16

libxmp - 4.7.3
Ebuild name:

media-libs/libxmp-4.7.3

Description

Library that renders module files to PCM data

Added to portage

2026-09-16

limine - 12.9.0
Ebuild name:

sys-boot/limine-12.9.0

Description

Modern, secure, portable, multiprotocol bootloader and boot manager

Added to portage

2026-09-16

linux-firmware - 20260916
Ebuild name:

sys-kernel/linux-firmware-20260916

Description

Linux firmware files

Added to portage

2026-09-16

lxd - 5.21.1-r2
Ebuild name:

app-containers/lxd-5.21.1-r2

Description

Modern, secure and powerful system container and virtual machine manag

Added to portage

2026-09-16

lxd - 5.21.4-r1
Ebuild name:

app-containers/lxd-5.21.4-r1

Description

Modern, secure and powerful system container and virtual machine manag

Added to portage

2026-09-16

lxd - 5.21.7
Ebuild name:

app-containers/lxd-5.21.7

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-09-16

lxd - 6.3-r1
Ebuild name:

app-containers/lxd-6.3-r1

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-09-16

lxd - 6.5-r1
Ebuild name:

app-containers/lxd-6.5-r1

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-09-16

lxd - 6.9
Ebuild name:

app-containers/lxd-6.9

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-09-16

mariadb - 10.11.19
Ebuild name:

dev-db/mariadb-10.11.19

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-09-16

mariadb - 11.4.13-r1
Ebuild name:

dev-db/mariadb-11.4.13-r1

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-09-16

mariadb - 11.8.9-r1
Ebuild name:

dev-db/mariadb-11.8.9-r1

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-09-16

mariadb - 12.3.3-r1
Ebuild name:

dev-db/mariadb-12.3.3-r1

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-09-16

mariadb-connector-c - 3.4.9
Ebuild name:

dev-db/mariadb-connector-c-3.4.9

Description

C client library for MariaDB/MySQL

Added to portage

2026-09-16

mediainfo - 26.05
Ebuild name:

media-video/mediainfo-26.05

Description

MediaInfo supplies technical and tag information about media files

Added to portage

2026-09-16

mysql - 8.4.11
Ebuild name:

dev-db/mysql-8.4.11

Description

Fast, multi-threaded, multi-user SQL database server

Added to portage

2026-09-16

mythtv - 36.0_p20260819
Ebuild name:

media-tv/mythtv-36.0_p20260819

Description

Open Source DVR and media center hub

Added to portage

2026-09-16

njs - 1.0.1
Ebuild name:

www-nginx/njs-1.0.1

Description

A subset of JavaScript language to use in NGINX

Added to portage

2026-09-16

nodejs - 26.8.2-r1
Ebuild name:

net-libs/nodejs-26.8.2-r1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-09-16

numpydoc - 1.11.0
Ebuild name:

dev-python/numpydoc-1.11.0

Description

Sphinx extension to support docstrings in Numpy format

Added to portage

2026-09-16

nvidia-container-toolkit - 1.20.0-r1
Ebuild name:

app-containers/nvidia-container-toolkit-1.20.0-r1

Description

NVIDIA container runtime toolkit

Added to portage

2026-09-16

openjdk - 27_p35
Ebuild name:

dev-java/openjdk-27_p35

Description

Open source implementation of the Java programming language

Added to portage

2026-09-16

openjdk - 28_alpha15
Ebuild name:

dev-java/openjdk-28_alpha15

Description

Open source implementation of the Java programming language

Added to portage

2026-09-16

openjdk-bin - 17.0.20.1_p1-r1
Ebuild name:

dev-java/openjdk-bin-17.0.20.1_p1-r1

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-16

openjdk-bin - 21.0.12.1_p1-r1
Ebuild name:

dev-java/openjdk-bin-21.0.12.1_p1-r1

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-16

openjdk-bin - 25.0.4.1_p1-r1
Ebuild name:

dev-java/openjdk-bin-25.0.4.1_p1-r1

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-16

openjdk-bin - 27_beta35-r1
Ebuild name:

dev-java/openjdk-bin-27_beta35-r1

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-16

openjdk-bin - 28_alpha13-r1
Ebuild name:

dev-java/openjdk-bin-28_alpha13-r1

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-16

openrc - 0.64
Ebuild name:

sys-apps/openrc-0.64

Description

OpenRC manages the services, startup and shutdown of a host

Added to portage

2026-09-16

opensubdiv - 3.6.1-r1
Ebuild name:

media-libs/opensubdiv-3.6.1-r1

Description

An Open-Source subdivision surface library

Added to portage

2026-09-16

pecl-parallel - 1.2.15
Ebuild name:

dev-php/pecl-parallel-1.2.15

Description

A succint parallel concurrency API for PHP

Added to portage

2026-09-16

pixi - 0.81.0
Ebuild name:

dev-util/pixi-0.81.0

Description

A package management and workflow tool

Added to portage

2026-09-16

plex-media-server - 1.43.4.10903
Ebuild name:

media-tv/plex-media-server-1.43.4.10903

Description

Free media library that is intended for use with a plex cli

Added to portage

2026-09-16

plotly - 7.1.0
Ebuild name:

dev-python/plotly-7.1.0

Description

Browser-based graphing library for Python

Added to portage

2026-09-16

podman - 6.1.2
Ebuild name:

app-containers/podman-6.1.2

Description

A tool for managing OCI containers and pods with Docker-compatible CLI

Added to portage

2026-09-16

popfile - 1.1.3-r2
Ebuild name:

mail-filter/popfile-1.1.3-r2

Description

Anti-spam bayesian filter

Added to portage

2026-09-16

propcache - 0.5.4
Ebuild name:

dev-python/propcache-0.5.4

Description

Accelerated property cache

Added to portage

2026-09-16

prrte - 4.1.0-r1
Ebuild name:

sys-cluster/prrte-4.1.0-r1

Description

PMIx Reference RunTime Environment

Added to portage

2026-09-16

pymdown-extensions - 12.0.1
Ebuild name:

dev-python/pymdown-extensions-12.0.1

Description

Extensions for Python Markdown

Added to portage

2026-09-16

pyproject-api - 1.11.1
Ebuild name:

dev-python/pyproject-api-1.11.1

Description

API to interact with the python pyproject.toml based projects

Added to portage

2026-09-16

pyproject-hooks - 1.3.0
Ebuild name:

dev-python/pyproject-hooks-1.3.0

Description

Wrappers to build Python packages using PEP 517 hooks

Added to portage

2026-09-16

qlcplus - 4.14.4
Ebuild name:

app-misc/qlcplus-4.14.4

Description

A software to control DMX or analog lighting systems

Added to portage

2026-09-16

qpdf - 12.4.1-r1
Ebuild name:

app-text/qpdf-12.4.1-r1

Description

Command-line tool for structural, content-preserving transformation of PDF

Added to portage

2026-09-16

r8125 - 9.018.00
Ebuild name:

net-misc/r8125-9.018.00

Description

r8125 vendor driver for Realtek RTL8125 PCI-E NICs

Added to portage

2026-09-16

readline - 8.3_p6
Ebuild name:

sys-libs/readline-8.3_p6

Description

Another cute console display library

Added to portage

2026-09-16

redis-knot - 3.6.0
Ebuild name:

net-dns/redis-knot-3.6.0

Description

Redis module for Knot DNS

Added to portage

2026-09-16

sabnzbd - 5.1.3
Ebuild name:

net-nntp/sabnzbd-5.1.3

Description

Binary newsgrabber with web-interface

Added to portage

2026-09-16

siegfried - 1.11.8
Ebuild name:

app-misc/siegfried-1.11.8

Description

Signature-based file format identification

Added to portage

2026-09-16

skopeo - 1.24.1
Ebuild name:

app-containers/skopeo-1.24.1

Description

Work with remote container images registries

Added to portage

2026-09-16

sqlalchemy - 2.0.54
Ebuild name:

dev-python/sqlalchemy-2.0.54

Description

Python SQL toolkit and Object Relational Mapper

Added to portage

2026-09-16

tbb - 2023.1.0
Ebuild name:

dev-cpp/tbb-2023.1.0

Description

High level abstract threading library

Added to portage

2026-09-16

threadpoolctl - 3.7.0
Ebuild name:

dev-python/threadpoolctl-3.7.0

Description

Limit the number of threads used in native libs that have their own

Added to portage

2026-09-16

tifffile - 2026.9.15
Ebuild name:

dev-python/tifffile-2026.9.15

Description

Read and write TIFF files

Added to portage

2026-09-16

tomcat - 10.1.60
Ebuild name:

www-servers/tomcat-10.1.60

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2026-09-16

tomcat - 11.0.26
Ebuild name:

www-servers/tomcat-11.0.26

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2026-09-16

tomcat - 9.0.122
Ebuild name:

www-servers/tomcat-9.0.122

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2026-09-16

tomcat-native - 1.3.9
Ebuild name:

dev-java/tomcat-native-1.3.9

Description

Allows Tomcat to use certain native resources for better performance

Added to portage

2026-09-16

tomcat-native - 2.0.16
Ebuild name:

dev-java/tomcat-native-2.0.16

Description

Allows Tomcat to use certain native resources for better performance

Added to portage

2026-09-16

tornado - 6.5.10
Ebuild name:

dev-python/tornado-6.5.10

Description

Python web framework and asynchronous networking library

Added to portage

2026-09-16

trakit - 0.4.0
Ebuild name:

dev-python/trakit-0.4.0

Description

Guess additional information from titles in media tracks

Added to portage

2026-09-16

unbound - 1.26.1
Ebuild name:

net-dns/unbound-1.26.1

Description

A validating, recursive and caching DNS resolver

Added to portage

2026-09-16

urllib3 - 2.8.0
Ebuild name:

dev-python/urllib3-2.8.0

Description

HTTP library with thread-safe connection pooling, file post, and more

Added to portage

2026-09-16

ut2-glaze - 1.2.1
Ebuild name:

dev-cpp/ut2-glaze-1.2.1

Description

Stripped down fork of boost-ext ut2

Added to portage

2026-09-16

uv - 0.12.15
Ebuild name:

dev-python/uv-0.12.15

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-16

uv-build - 0.12.15
Ebuild name:

dev-python/uv-build-0.12.15

Description

PEP517 uv build backend

Added to portage

2026-09-16

vinyl-cache - 9.0.2
Ebuild name:

www-servers/vinyl-cache-9.0.2

Description

A high-performance caching HTTP reverse proxy

Added to portage

2026-09-16

vinyl-cache - 9.1.0
Ebuild name:

www-servers/vinyl-cache-9.1.0

Description

A high-performance caching HTTP reverse proxy

Added to portage

2026-09-16

virtualenv - 21.7.10
Ebuild name:

dev-python/virtualenv-21.7.10

Description

Virtual Python Environment builder

Added to portage

2026-09-16

xvfbwrapper - 0.2.34
Ebuild name:

dev-python/xvfbwrapper-0.2.34

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-09-16

yarl - 1.25.1
Ebuild name:

dev-python/yarl-1.25.1

Description

Yet another URL library

Added to portage

2026-09-16

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 69.4 ms